home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Report Writers / Crystal Repot 9.0 Full CD version / Setup.exe / ProgramF / CRYSTAL / CRW9 / DEV / INCLUDE / Ufmain.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-10  |  979 b   |  35 lines

  1. /*
  2. ** File:    UFMain.h
  3. ** Author:  Rick Cameron, Rex Benning
  4. ** Date:    7 Mar 93
  5. **
  6. ** Purpose: Declarations of standard functions
  7. **          for a user-defined function DLL.
  8. */
  9.  
  10. #if !defined (UFMAIN_H)
  11. #define UFMAIN_H
  12.  
  13. #if defined (__cplusplus)
  14. extern "C"
  15. {
  16. #endif
  17.  
  18. extern HINSTANCE UFInstance;
  19.  
  20. extern UFParamListElement FAR *GetParam (UFParamBlock FAR *param,
  21.                                          UFTInt16s paramNumber);
  22.  
  23. extern UFMemCalcParam FAR *GetMemCalcParam (UFMemCalcBlock FAR *param,
  24.                                             UFTInt16s paramNumber);
  25. extern UFMemCalcParam FAR *GetMemCalcArrayElement (UFMemCalcParam FAR *param,
  26.                                                    UFTInt16s paramNumber);
  27. extern UFParamListElement FAR *GetMemCalcRunParam (UFMemCalcBlock FAR *param,
  28.                                                    UFTInt16s paramNumber);
  29.  
  30. #if defined (__cplusplus)
  31. }
  32. #endif
  33.  
  34. #endif // !defined (UFMAIN_H)
  35.